home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 37
/
CD Expert nº 37.iso
/
LastCall
/
lastcall.exe
/
stuff
/
lastcall.dxr
/
00192_Hide if not on level 1.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2000-03-27
|
331 b
|
23 lines
property pSpr
on beginSprite me
global gGameLevel
pSpr = sprite(me.spriteNum)
if (gGameLevel > 0) and not inShotMode() then
pSpr.visible = 0
end if
end
on endSprite me
pSpr.visible = 1
end
on mouseUp
if inRecipeMode() or inShotMode() then
go("Main Menu")
else
go("New Game")
end if
stopEvent()
end